aboutsummaryrefslogtreecommitdiff
path: root/src/pages/blog/[...slug].astro
blob: 41b0f5c41ee78fb3b1fb3b98fd5df626a5587655 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
import { type CollectionEntry, getCollection } from "astro:content";
import Comments from "../../components/Comments.astro";
import Layout from "../../layouts/BaseLayout.astro";
import dayjs from "dayjs";

type Props = CollectionEntry<"blog">;

export async function getStaticPaths() {
	const posts = await getCollection("blog", ({ data }) => {
		return data.draft !== true;
	});

	return posts.map((post) => ({
		params: { slug: post.slug },
		props: post,
	}));
}

const post = Astro.props;
const { Content, remarkPluginFrontmatter } = await post.render();
const formattedDate = dayjs(post.data.pubDate.toString()).format("MMMM DD, YYYY");
---

<style lang="scss">
	@import "../../scss/_variables.scss";

	p {
		opacity: 0.5;
	}
</style>

<Layout description={post.data.description} title={post.data.title}>
	<article>
		<section>
			<p>
				<small>
					<a href="/">&lt; Home</a>
					<span>&nbsp;•&nbsp;</span>
					Posted
					<time datetime={post.data.pubDate.toISOString()}>{formattedDate}</time>
					by&nbsp;{post.data.author}
					<span>&nbsp;•&nbsp;</span>
					<span>{remarkPluginFrontmatter.minutesRead}</span>
				</small>
			</p>
		</section>

		<section>
			<h1>{post.data.title}</h1>
		</section>

		<section>
			<Content />
		</section>

		<section>
			<Comments />
		</section>
	</article>
</Layout>